home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / gamebord / chsclk20.zip / MAKEFILE < prev    next >
Text File  |  1996-10-23  |  531b  |  24 lines

  1. #                        Makefile for CHESSCLOCK
  2. #
  3. # MCooper
  4. # PO Box 237
  5. # St. David, AZ 85630-0237
  6. # E-mail: thegrendel@theriver.com
  7. # Web   http://personal.riverusers.com/~thegrendel/
  8.  
  9. GRLIB=graphics.lib
  10. VIDDRVR=\borlandc\bgi\egavgaf.obj
  11. GOTHFNT=\borlandc\bgi\gothf.obj
  12. TRIPFNT=\borlandc\bgi\tripf.obj
  13.  
  14.  
  15. chessclk.exe: chessclk.cpp oscr.hpp chessclk.hpp sound.obj
  16.    BCC -Ox -3 chessclk sound.obj $(GRLIB) $(VIDDRVR) $(GOTHFNT) $(TRIPFNT)
  17.  
  18. sound.obj: sound.c
  19.    BCC -Ox -3 -c sound.c
  20.  
  21. clean:
  22.    del *.obj
  23.  
  24.